home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-01-22 | 1.0 KB | 42 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Internet\Netscape Navigator"
- "NAME"="Navigator Settings"
- "VERSION"="1.11"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Enable blinking text"
- "DESCRIPTION 1"="If you hate the blinking text that sometimes appears inside Navigator, disable the first option."
- "DESCRIPTION 2"="NOTE: This will only work on versions of Netscape prior to 4.x."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
-
-
- sP="HKCU\Software\Netscape\Netscape Navigator\Settings\"
- sV1="Blinking"
- Sub Plugin_Initialize
- if RegPathExists(sP) then
- s=RegReadValue(sP&sv1)
- if UCase(s)="YES" then SetUIElement 1,true
- else
- Disable
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sp&sv1,"Yes",1)
- else
- Call RegWriteValue(sp&sv1,"No",1)
- end if
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-